home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 2 / ETO Development Tools 2.iso / Essentials / Developer Essentials Nov 90 / Apple II / Apple.II.partition / Tools / DTS.Samples / SC17Darts / Darts.p / UWindow.p < prev   
Encoding:
Text File  |  1990-06-25  |  1.2 KB  |  64 lines  |  [TEXT/pdos]

  1. {**********************************************************************
  2. {*
  3. {* Darts uWindow -- Version 3.0  (interface)
  4. {*
  5. {* Copyright (c)
  6. {* Apple Computer, Inc.  1986-1989
  7. {* All Rights Reserved.
  8. {*
  9. {* Developer Technical Support Apple II Sample Code
  10. {*
  11. {* This file contains the interface to the code which implements  
  12. {* windows in the program.
  13. {*
  14. {**********************************************************************}
  15.  
  16. UNIT uWindow;
  17.  
  18. INTERFACE
  19.  
  20. USES
  21.  
  22.        types,
  23.        locator,
  24.        quickdraw,
  25.        fonts,
  26.        MEMORY,
  27.        intMath,
  28.        events,
  29.        controls,
  30.        windows,
  31.        dialogs,
  32.        menus,
  33.        DESK,
  34.        STDFILE,
  35.        GSOS,
  36.        resources,
  37.        misctool,
  38.        lists,
  39.        
  40.        
  41.        uGlobals,
  42.        uUtils;
  43.  
  44. procedure   setUpWindows;
  45. procedure   invalScore          (PlayerNum : integer);
  46. procedure   clearList           (PlayerNum : integer);
  47. procedure   addToList           (PlayerNum : integer;  Amount : integer);
  48. procedure   removeSelected      (PlayerNum : integer);
  49. procedure   fixButtonTitle      (PlayerNum : integer;  Amount : integer);
  50. procedure   drawThisWindow;
  51. procedure   startupRobinGame;
  52. procedure   startupCrickettGame;
  53.  
  54.  
  55.  
  56. IMPLEMENTATION
  57.  
  58. {$I uWindow.inc.p }
  59.  
  60.  
  61.  
  62.  
  63. END.
  64.